home *** CD-ROM | disk | FTP | other *** search
/ Exploring the Internet with NASA / Exploring the Internet With NASA.iso / pc / bdmedia / source / nasa.dxr / Scripts_7_Field Scripts.ls < prev    next >
Encoding:
Text File  |  1996-11-08  |  350 b   |  18 lines

  1. on clearEarthInventions
  2.   put EMPTY into field "earth inventions"
  3. end
  4.  
  5. on checkName
  6.   if field "Earth Inventions" = "Earth Inventions" then
  7.     go("GoodEarth")
  8.   else
  9.     go("Earthmis1")
  10.   end if
  11. end
  12.  
  13. on setFieldContents fieldList, fieldValue
  14.   repeat with x = 1 to count(fieldList)
  15.     put fieldValue into field getAt(fieldList, x)
  16.   end repeat
  17. end
  18.